home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 41 / Issue 41.iso / pc / Featured.dir / 00093_Install3.ls < prev    next >
Encoding:
Text File  |  2000-12-04  |  488 b   |  17 lines

  1. on mouseWithin
  2.   cursor(280)
  3.   member("Install").foreColor = 70
  4.   put "Click to install this software title to your hard drive" into member "InfoField"
  5. end
  6.  
  7. on mouseLeave
  8.   cursor(0)
  9.   member("Install").foreColor = 255
  10.   put EMPTY into member "InfoField"
  11. end
  12.  
  13. on mouseUp
  14.   alert("Note that a 'Bad Command' warning may appear during installation. Close the relevant window to continue if this error occurs")
  15.   open(the moviePath & "PCSoftware\Rational Software Siteload\SiteLoad.exe")
  16. end
  17.